home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Mac Easy 2010 May
/
Mac Life Ubuntu.iso
/
casper
/
filesystem.squashfs
/
etc
/
acpi
/
resume.d
/
62-ifup.sh
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Linux/UNIX/POSIX Shell Script
|
2009-03-27
|
302 b
|
12 lines
#!/bin/sh
# Bring up the interfaces. This should probably be left up to some policy
# manager, but at the moment we just bring back all the ifupdown-managed
# interfaces that were up at suspend time.
for x in $IFUP_INTERFACES; do
if must_control_interface $x ; then
ifup $x &
fi
done